projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bb5b775
)
(custom-make-dependencies): Sort MEMBERS before use.
author
Richard M. Stallman
<rms@gnu.org>
Wed, 18 Sep 2002 16:01:21 +0000
(16:01 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Wed, 18 Sep 2002 16:01:21 +0000
(16:01 +0000)
lisp/cus-dep.el
patch
|
blob
|
history
diff --git
a/lisp/cus-dep.el
b/lisp/cus-dep.el
index 4cb856cc04452ae8c2d3c6df1785bc26425e4bc8..9156bcec3bf9ab328fa23c667e7308a79557cebf 100644
(file)
--- a/
lisp/cus-dep.el
+++ b/
lisp/cus-dep.el
@@
-86,6
+86,8
@@
Usage: emacs -batch -l ./cus-dep.el -f custom-make-dependencies DIRS"
(let ((members (get symbol 'custom-group))
item where found)
(when members
+ ;; So x and no-x builds won't differ.
+ (setq members (sort (copy-sequence members) 'string<))
(while members
(setq item (car (car members))
members (cdr members)